2c7fdc65484ddcf885127bab5b398cc8580f7a55,src/jfs/conf/JFSConfigXML.java,JFSConfigXML,loadProfile,#File#,49

Before Change


                attr = root.getAttributeNode("keepuseractions");

                if (attr!=null) {
                    setKeepUserActions(Boolean.valueOf(attr.getValue()).booleanValue());
                }

                attr = root.getAttributeNode("storehistory");

After Change


                attr = root.getAttributeNode("keepuseractions");

                if (attr!=null) {
                    setKeepUserActions(Boolean.parseBoolean(attr.getValue()));
                }

                attr = root.getAttributeNode("storehistory");